home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Super CD
/
Super CD.iso
/
kids
/
shaps
/
hdinstal.bat
< prev
next >
Wrap
DOS Batch File
|
1988-07-27
|
841b
|
29 lines
Echo Off
Echo (C)Copyright First Byte Corporation 1988
Echo - - - - -
if not .%1 == . goto HASARG
Echo You must supply the Hard Disk drive number as an argument:
Echo HDINSTALL C:
goto ABORT
:HASARG
if exist SPEECH.EXE goto HASSP
Echo You must first do a regular INSTALL before installing on your Hard Disk.
goto ABORT
:HASSP
Echo We are about to copy all files to the current directory on your Hard
Echo Disk %1 ....
Echo - - - - -
Echo (Hit Ctrl-C to stop installation)
Echo - - - - -
pause
Echo Copying all Disk 1 files ..
copy a:*.* %1
if exist CGAA.FNT goto DONE
Echo After the next DOS prompt, insert your Disk 2 ..
Echo Copying all Disk 2 files ..
copy b:*.* %1
:DONE
Echo Done installing onto your Hard Disk. You may run the product from the
Echo Hard Disk by typing RUN and then ENTER.
:ABORT